b5730d4e248778817f54baf4fd6ecf1e2c20ce00,accumulo/src/main/java/org/vertexium/accumulo/AccumuloGraph.java,AccumuloGraph,listDataTableSplits,#,1639

Before Change



    public Iterable<Range> listDataTableSplits() {
        try {
            return splitsIterableToRangeIterable(getConnector().tableOperations().listSplits(getDataTableName()));
        } catch (Exception ex) {
            throw new VertexiumException("Could not get splits for: " + getVerticesTableName(), ex);
        }

After Change


    }

    public Iterable<Range> listDataTableSplits() {
        return listTableSplits(getDataTableName());
    }

    private Iterable<Range> listTableSplits(String tableName) {